home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts Interactive 4 / CARTS4.iso / mac / MiniCad 6.0.1 demo / MiniCad 6.0.1 Demo / MiniCad 6.0.1 Demo.rsrc / STR#_7027.txt < prev    next >
Text File  |  1996-03-22  |  1KB  |  37 lines

  1. Returns the name of the indexth field attached to the record connected to RecordHandle.
  2.  
  3. GetFldName(RecordHandle : HANDLE, Index : INTEGER) : STRING;
  4.  
  5. Returns a handle to the indexth record attached to the object connected to ObjectHandle. If ObjectHandle = nil, returns the indexth record in the drawing.
  6.  
  7. GetRecord(ObjectHandle : HANDLE; Index : INTEGER) : HANDLE;
  8.  
  9. Returns the number of fields in the record connected to RecordHandle.
  10.  
  11. NumFields(RecordHandle : HANDLE) : INTEGER;
  12.  
  13. Returns the number of records attached to the object connected to ObjectHandle. If ObjectHandle = nil, returns the number of records in the active drawing.
  14.  
  15. NumRecords(ObjectHandle : HANDLE) : INTEGER;
  16.  
  17. Given a search criteria, EvalStr will return the string result of that criteria.
  18.  
  19. EvalStr(h : Handle; searchCriteria : STRING) : STRING;
  20.  
  21. Given a search criteria, Eval will return the value of that criteria.
  22.  
  23. Eval(h : Handle; searchCriteria : STRING) : REAL;
  24.  
  25. Assigns a field a value of a previously created record assigned to an object.
  26.  
  27. SetRField(h : Handle; format, field, value : STRING);
  28.  
  29. Assigns a record to the object that is specified by h and the type of record by theFormat.
  30.  
  31. SetRecord(h : Handle; theFormat : STRING);
  32.  
  33. Adds a new field to a format. Creates a new format if one does not exist by that name.
  34.  
  35. NewField(format, fieldName, fieldValue : STRING; numericForm, accuracy : INTEGER);
  36.  
  37.